home *** CD-ROM | disk | FTP | other *** search
- CLEAR
- ? 'Example database program to show how to load and run a Pascal EXE program'
- ?
- LOAD BINDEMO1.BIN
- BT = 'This is a message string directed from the database program'
- ?
- CALL BINDEMO1 WITH BT
- ?
- ? 'We are now back in the database program'
- ? BT
- ?
- BT = 'This is a new message string directed from the database program'
- ?
- CALL BINDEMO1 WITH BT
- ?
- ? 'We are now back in the database program again'
- ? BT
- ?